home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / kcl / akcl / kcl.lha / unixport / readme < prev    next >
Text File  |  1985-06-29  |  2KB  |  82 lines

  1.                             June 20, 1985
  2.  
  3.  
  4.         KYOTO COMMON LISP on UNIX 4.2 bsd
  5.  
  6.             Installation Guide
  7.  
  8.  
  9. 1. Prepare a directory (hereafter called 'KCL directory') for Kyoto Common
  10. Lisp.  In the following examples, we suppose that the KCL directory is
  11. '/usr/kcl'.
  12.  
  13.  
  14. 2. Load the distribution tape to the KCL directory.
  15.  
  16.     % pwd
  17.     /usr/kcl
  18.     % tar x
  19.  
  20. You will find that the subdirectory, unixport, has been created.
  21. The unixport subdirectory contains everything that is needed to run KCL and
  22. the KCL compiler.  Files in this directory are:
  23.  
  24.     Documents:
  25.     readme            this file
  26.  
  27.     Executable file:
  28.     saved_kcl        the KCL interpreter and compiler
  29.  
  30.     Command files:
  31.     kcl            to invoke KCL
  32.     lc            to invoke the KCL compiler
  33.     lc1            to invoke the KCL compiler
  34.  
  35.      Header file:
  36.     cmpinclude.h        the header file for the KCL compiler
  37.  
  38.  
  39. 3. Customize the command files.
  40.  
  41. The command file, kcl, consists of a single line command to invoke the KCL
  42. interpreter.
  43.  
  44.     #
  45.     ~/unixport/saved_kcl ~/unixport/
  46.  
  47. Replace two '~'s with the pathname of the KCL directory (ie. '/usr/kcl' in
  48. our example).
  49.  
  50.     #
  51.     /usr/kcl/unixport/saved_kcl /usr/kcl/unixport/
  52.  
  53. And move this file to an appropriate command directory, say '/usr/bin', so
  54. that all KCL users can access it.
  55.  
  56. You can use the commands lc and lc1 to invoke the compiler directly from the
  57. shell.  The content of lc is:
  58.  
  59.     #
  60.     echo Compiling $1.lsp
  61.     ~/unixport/saved_kcl ~/unixport/ $1 $1 U1000
  62.  
  63. Customize these command files in the same way as for the kcl command file
  64. above.
  65.  
  66.  
  67. 4. Install the header file
  68.  
  69. Copy the header file, cmpinclude.h, to the standard directory for C include
  70. files, say /usr/include.
  71.  
  72.  
  73. 5. Inquiries and bug reports should be addressed to:
  74.  
  75.     Masami Hagiya or Taiichi Yuasa
  76.  
  77.     Research Institute for Mathematical Sciences,
  78.     Kyoto University, Kyoto 606, Japan
  79.  
  80.     Tel. 075-751-2111 ext. 7238 or 7209
  81.     Telex: 05422020 RIMS J 
  82.